home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / perl / dist / msdos / glob.c < prev    next >
C/C++ Source or Header  |  1991-06-10  |  268b  |  18 lines

  1. /*
  2.  * Globbing for MS-DOS.  Relies on the expansion done by the library
  3.  * startup code. (dds)
  4.  */
  5.  
  6. #include <stdio.h>
  7. #include <string.h>
  8.  
  9. main(int argc, char *argv[])
  10. {
  11.     register i;
  12.  
  13.     for (i = 1; i < argc; i++) {
  14.         fputs(strlwr(argv[i]), stdout);
  15.         putchar(0);
  16.     }
  17. }
  18.